{
	"info": {
		"_postman_id": "aac29137-7897-4adb-be28-ea31b4415ca6",
		"name": "Stable Coin Backend",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "9264367"
	},
	"item": [
		{
			"name": "transaction",
			"item": [
				{
					"name": "create multisig transaction",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"transaction_message\": \"Sample transaction message\",\n  \"description\": \"Transaction description\",\n  \"hedera_account_id\": \"0.0.1234\",\n  \"key_list\": [\n    \"0x123456789abcdef\",\n    \"0xfedcba987654321\"\n  ],\n  \"threshold\": 1\n}\n",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/api/transactions",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"transactions"
							]
						}
					},
					"response": []
				},
				{
					"name": "sign multisig transaction",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"signed_transaction_message\": \"Este es un mensaje de transacción firmado\",\n  \"public_key\": \"0x123456789abcdef\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{base_url}}/api/transactions/{transactionId}",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"transactions",
								"{transactionId}"
							]
						}
					},
					"response": []
				},
				{
					"name": "delete multisig transaction",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{base_url}}/api/transactions/{transactionId}",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"transactions",
								"{transactionId}"
							]
						}
					},
					"response": []
				},
				{
					"name": "retrieve multisig transaction",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{base_url}}/api/transactions/{publickey}",
							"host": [
								"{{base_url}}"
							],
							"path": [
								"api",
								"transactions",
								"{publickey}"
							]
						}
					},
					"response": []
				}
			]
		}
	]
}